Int (VBScript)

The Int command (and the Fix command ) both remove the fractional part of a numeric. The difference between these two commands is with the way they handle negative numbers. Int will convert -8.4 to -9, whereas Fix will convert -8.4 to -8.

Syntax

INT ( numeric_expression )